14 lines
291 B
C#
14 lines
291 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace demka2025_sedelnikov;
|
|
|
|
public partial class Partnertype
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? PartnerTypeName { get; set; }
|
|
|
|
public virtual ICollection<Partner> Partners { get; set; } = new List<Partner>();
|
|
}
|