mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-13 03:34:55 +08:00
18 lines
472 B
C#
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>();
|
|
}
|
|
} |