22 lines
456 B
C#
22 lines
456 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Subd;
|
|
|
|
public partial class Studio
|
|
{
|
|
public int IdStudio { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public int? Date { get; set; }
|
|
|
|
public string? Country { get; set; }
|
|
|
|
public int? IdParentCompany { get; set; }
|
|
|
|
public virtual ICollection<Film> Films { get; set; } = new List<Film>();
|
|
|
|
public virtual ParentCompany? IdParentCompanyNavigation { get; set; }
|
|
}
|