demo2023/demo_2023/Models/Country.cs

20 lines
422 B
C#
Raw Normal View History

2025-01-22 13:34:31 +00:00
using System;
using System.Collections.Generic;
namespace demo_2023.Models;
public partial class Country
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public string EnName { get; set; } = null!;
public string Code { get; set; } = null!;
public int Code2 { get; set; }
public virtual ICollection<Client> Clients { get; set; } = new List<Client>();
}