9 lines
208 B
C#
9 lines
208 B
C#
namespace JSMR.Domain.Entities;
|
|
|
|
public class VoiceWorkSearch
|
|
{
|
|
public int VoiceWorkId { get; set; }
|
|
public VoiceWork? VoiceWork { get; set; }
|
|
|
|
public required string SearchText { get; set; }
|
|
} |