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.

13 lines
380 B

using System.ComponentModel.DataAnnotations;
namespace Connected.ServiceModel.Client.Data.Remote;
internal sealed class RemoteTableColumn
{
[Required, MaxLength(128)]
public string Name { get; set; } = default!;
[Required, MaxLength(128)]
public string DataType { get; set; } = default!;
public bool IsPartitionKey { get; set; }
public bool IsPrimaryKey { get; set; }
}