11 lines
220 B
C#
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; }
|
|
}
|
|
} |