sharding/samples/Samples.DynamicDb.Npgsql/WebApplication1.Data/Models/Order.cs

14 lines
200 B
C#

using System;
namespace WebApplication1.Data.Models
{
public class Order
{
public Guid Id { get; set; } = Guid.NewGuid();
public string Name { get; set; } = "";
}
}