mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
17 lines
374 B
C#
17 lines
374 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Roadie.Library.Models
|
|
{
|
|
[Serializable]
|
|
public class CreditCategory : EntityModelBase
|
|
{
|
|
[MaxLength(100)]
|
|
public string Name { get; set; }
|
|
|
|
[MaxLength(4000)]
|
|
public string Description { get; set; }
|
|
}
|
|
}
|