Files
SammelmappeOOP/E-Book/Texte.cs
2024-07-25 15:47:46 +02:00

19 lines
388 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace E_Book
{
internal class Texte : MediaAssets
{
private decimal charCount;
public Texte(decimal charCount)
{
this.charCount = charCount;
this.pageCount = Math.Ceiling(charCount / 2000);
}
}
}