subd/Subd/ParentCompany.cs
2023-05-04 12:12:14 +04:00

18 lines
354 B
C#

using System;
using System.Collections.Generic;
namespace Subd;
public partial class ParentCompany
{
public int IdParentCompany { get; set; }
public string? Name { get; set; }
public int? Date { get; set; }
public string? Country { get; set; }
public virtual ICollection<Studio> Studios { get; set; } = new List<Studio>();
}