21 lines
358 B
C#
21 lines
358 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace AutoCatCore.Model
|
|
{
|
|
public class VehiclePhoto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[MaxLength(100)]
|
|
public string? Brand { get; set; }
|
|
|
|
[MaxLength(100)]
|
|
public string? Model { get; set; }
|
|
|
|
public double? Date { get; set; }
|
|
|
|
[MaxLength(500)]
|
|
public string? Url { get; set; }
|
|
}
|
|
}
|