Files
jsmr/JSMR.Domain/Entities/VoiceWorkSearch.cs
2025-08-26 09:20:13 -04:00

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; }
}