Files
elwig/WGneu/Documents/BusinessLetter.cshtml.cs
2023-03-08 01:29:57 +01:00

15 lines
313 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WGneu.Models;
namespace WGneu.Documents {
public class BusinessLetter : BusinessDocument {
public BusinessLetter(string title, Member m) : base(title, m) {
}
}
}