12 lines
228 B
C#
12 lines
228 B
C#
namespace Sockeye.Models
|
|
{
|
|
|
|
public class NewTextIdConcurrencyTokenItem
|
|
{
|
|
public long Id { get; set; }
|
|
public string NewText { get; set; }
|
|
public uint Concurrency { get; set; }
|
|
}
|
|
|
|
}
|