subd/Subd/ParentCompany.cs

18 lines
354 B
C#
Raw Permalink Normal View History

2023-05-04 12:12:14 +04:00
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>();
}