24 lines
567 B
C#
24 lines
567 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MiniSoftDatabase.Models
|
|
{
|
|
internal class Developer
|
|
{
|
|
public required string Id { get; set; }
|
|
|
|
public required string DeveloperName { get; set; }
|
|
|
|
public string? PrevDeveloperName { get; set; }
|
|
|
|
public string? PrevPrevDeveloperName { get; set; }
|
|
|
|
[ForeignKey("DeveloperId")]
|
|
public List<Software>? Softwares { get; set; }
|
|
}
|
|
}
|