using System; using System.Collections.ObjectModel; namespace RomajiConverter.Core.Models { public class ConvertedLine { public ushort Index { get; set; } = 0; public TimeSpan? Time { get; set; } public string Chinese { get; set; } = string.Empty; public string Japanese { get; set; } = string.Empty; public ObservableCollection Units { get; set; } = new ObservableCollection(); } }