20 lines
423 B
C#
20 lines
423 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace demo4_true.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>();
|
|||
|
}
|