11 lines
248 B
C#
11 lines
248 B
C#
namespace Mosleys.Shared.Models {
|
|
public struct ExhibitUpdate {
|
|
public UpdateAction Action { get; set; }
|
|
public ExhibitVehicle Exhibit { get; set; }
|
|
}
|
|
|
|
public enum UpdateAction {
|
|
Update,
|
|
Delete
|
|
}
|
|
} |