20 lines
538 B
C#
20 lines
538 B
C#
using Realms;
|
|
|
|
namespace AutoCatCore.Model
|
|
{
|
|
public class VehicleOwnershipPeriod: EmbeddedObject
|
|
{
|
|
public string? LastOperation { get; set; }
|
|
public string? OwnerType { get; set; }
|
|
public long? From { get; set; }
|
|
public long? To { get; set; }
|
|
public string? Region { get; set; }
|
|
public string? RegistrationRegion { get; set; }
|
|
public string? Locality { get; set; }
|
|
public string? Code { get; set; }
|
|
public string? Street { get; set; }
|
|
public string? Building { get; set; }
|
|
public string? Inn { get; set; }
|
|
}
|
|
}
|