Files
marechai/Cicm.Database/Models/Iso31661Numeric.cs

17 lines
362 B
C#
Raw Normal View History

2018-08-05 23:11:15 +01:00
using System.Collections.Generic;
namespace Cicm.Database.Models
{
public class Iso31661Numeric
{
public Iso31661Numeric()
{
2018-08-06 21:27:14 +01:00
Companies = new HashSet<Company>();
2018-08-05 23:11:15 +01:00
}
public short Id { get; set; }
public string Name { get; set; }
2018-08-06 21:27:14 +01:00
public ICollection<Company> Companies { get; set; }
2018-08-05 23:11:15 +01:00
}
}