mirror of https://github.com/dotnet/tye.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
374 B
18 lines
374 B
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Shared
|
|
{
|
|
[DataContract]
|
|
public class Order
|
|
{
|
|
[DataMember(Order = 1)]
|
|
public Guid OrderId { get; set; }
|
|
|
|
[DataMember(Order = 2)]
|
|
public string UserId { get; set; } = default!;
|
|
|
|
[DataMember(Order = 3)]
|
|
public DateTime CreatedTime { get; set; }
|
|
}
|
|
}
|
|
|