auto_service/AutoService/Models/Work.cs

17 lines
305 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutoService.Models
{
public class Work
{
public int Id { get; set; }
public string Title { get; set; }
public int Price { get; set; }
}
}