mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
11 lines
No EOL
227 B
C#
11 lines
No EOL
227 B
C#
using System;
|
|
|
|
namespace Roadie.Library.Models.Users
|
|
{
|
|
[Serializable]
|
|
public class UserRelease : UserRatingBase
|
|
{
|
|
public DataToken Release { get; set; }
|
|
public DataToken User { get; set; }
|
|
}
|
|
} |