gos/src/Gos.Core/Entities/Segment.cs
2022-07-06 21:35:05 +02:00

11 lines
220 B
C#

namespace Gos.Core.Entities
{
public class Segment : BaseEntity
{
public int Order { get; set; }
public string SoundFile { get; set; }
public Statement Statement { get; set; }
}
}