mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
12 lines
No EOL
262 B
C#
12 lines
No EOL
262 B
C#
using Roadie.Library.Models.Releases;
|
|
using System;
|
|
|
|
namespace Roadie.Library.Models.Collections
|
|
{
|
|
[Serializable]
|
|
public class CollectionRelease
|
|
{
|
|
public int ListNumber { get; set; }
|
|
public ReleaseList Release { get; set; }
|
|
}
|
|
} |