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.

LuOrderByDbo.cs 246B

1234567891011
  1. using System.Collections.Generic;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace Luticate2.Utils.Dbo.OrderBy
  4. {
  5. public class LuOrderByDbo
  6. {
  7. [Required]
  8. public IList<LuOrderByFieldDbo> Fields { get; set; }
  9. }
  10. }