mirror of
https://github.com/sphildreth/roadie
synced 2024-11-22 20:23:16 +00:00
16 lines
381 B
C#
16 lines
381 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Roadie.Library.Models
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public sealed class CreditList : EntityModelBase
|
|||
|
{
|
|||
|
public ArtistList Artist { get; set; }
|
|||
|
public string CreditName { get; set; }
|
|||
|
public DataToken Category { get; set; }
|
|||
|
public string Description { get; set; }
|
|||
|
}
|
|||
|
}
|