Files
BetterLyrics/RomajiConverter.Core/Models/ConvertedLine.cs
2026-01-10 18:07:57 -05:00

18 lines
472 B
C#

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<ConvertedUnit> Units { get; set; } = new ObservableCollection<ConvertedUnit>();
}
}