Files
dotNetStudyWithGPT/MySolution/DBCreateEF/Model/Snack.cs

16 lines
308 B
C#
Raw Normal View History

2023-10-26 18:11:58 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DBCreateEF.Model
{
internal class Snack
{
public int Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
}
}