mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 14:54:11 +00:00
13 lines
No EOL
321 B
C#
13 lines
No EOL
321 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Roadie.Library.Models
|
|
{
|
|
[Serializable]
|
|
public class Genre : EntityModelBase
|
|
{
|
|
public IEnumerable<Comment> Comments { get; set; }
|
|
[MaxLength(100)] public string Name { get; set; }
|
|
}
|
|
} |