16 lines
295 B
C#
16 lines
295 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace NikiforovaMV.Models;
|
|||
|
|
|
|||
|
|
public partial class Partner
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
public string Type { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Kompany { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Rating { get; set; } = null!;
|
|||
|
|
}
|