18 lines
354 B
C#
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>();
|
|
}
|