13 lines
274 B
C#
13 lines
274 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace SessionCompanion.ViewModels.AlignmentViewModels
|
|||
|
{
|
|||
|
public class AlignmentViewModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
}
|
|||
|
}
|