15 lines
366 B
C#
15 lines
366 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CityInfo.API.Models
|
|
{
|
|
public class PointOfInterestForUpdateDto
|
|
{
|
|
[Required(ErrorMessage = "You should provide a name value.")]
|
|
[MaxLength(50)]
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
[MaxLength(200)]
|
|
public string? Description { get; set; }
|
|
}
|
|
}
|