erp-platform/api/src/Kurs.Platform.Domain/Entities/City.cs

18 lines
476 B
C#
Raw Normal View History

using System;
2025-08-18 21:25:09 +00:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Domain.Entities.Auditing;
namespace Kurs.Platform.Entities;
2025-06-27 07:15:36 +00:00
public class City : FullAuditedEntity<Guid>
{
public string Code { get; set; }
2025-08-18 21:25:09 +00:00
public string Name { get; set; }
public string PlateCode { get; set; }
public string CountryCode { get; set; }
public Country Country { get; set; }
2025-08-18 21:25:09 +00:00
public ICollection<District> District { get; set; }
}