18 lines
338 B
C#
18 lines
338 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Subd;
|
|
|
|
public partial class Director
|
|
{
|
|
public int IdDirector { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public int? Date { get; set; }
|
|
|
|
public string? Country { get; set; }
|
|
|
|
public virtual ICollection<Film> Films { get; set; } = new List<Film>();
|
|
}
|