12 lines
206 B
C#
12 lines
206 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Yavsc.Models.Booking {
|
|
|
|
public class MusicalPreference : MusicalTendency {
|
|
|
|
public long OwnerId { get; set; }
|
|
public int Rate { get; set; }
|
|
|
|
}
|
|
|
|
}
|