mirror of
https://github.com/sphildreth/roadie
synced 2024-11-26 22:20:21 +00:00
14 lines
297 B
C#
14 lines
297 B
C#
using Mapster;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Roadie.Data.Models
|
|
{
|
|
[Serializable]
|
|
public class AssociatedArtist
|
|
{
|
|
[AdaptMember("AssociatedArtist")]
|
|
public AssociatedArtistInfo AssociatedArtistInfo { get; set; }
|
|
}
|
|
}
|