NikivorovaMV/Models/Partner.cs

16 lines
295 B
C#
Raw Normal View History

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!;
}